From: Glenn Morris Date: Thu, 14 Jan 2010 06:13:16 +0000 (-0800) Subject: (show-trailing-whitespace): Safe if boolean. (Bug#5312) X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8723 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=2b786f51a7658353e00131e891f6cb8ff8a694d7;p=emacs.git (show-trailing-whitespace): Safe if boolean. (Bug#5312) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dc6a9f1a19d..29565214cf5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-01-14 Glenn Morris + + * frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312) + 2010-01-14 Kenichi Handa * composite.el (auto-composition-mode): Make it a buffer local diff --git a/lisp/frame.el b/lisp/frame.el index e2ae65f1ccc..0628db7ee38 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1525,6 +1525,7 @@ left untouched. FRAME nil or omitted means use the selected frame." "Non-nil means highlight trailing whitespace. This is done in the face `trailing-whitespace'." :type 'boolean + :safe 'booleanp :group 'whitespace-faces)